/-app
/-app/files
FileEntry.ts
FileList.ts
FolderEntry.ts
functions.ts
/-app/layout
Application.html
TestCase.html
TestPage.css
TestPage.html
/-app/tests
Application.ts
PageLayout.ts
functions.ts
/-boot
/-docs
/-features
/-imports
/-koBindings
/-storage
/-tests
/-tests/files
FileList.ts
/-tests/storage
_sampleTests.ts
/-typings
base.css
readme.md
stringUtils.ts
teapo.html
try.html
try.js
1
<!doctype html>
2
<html>
3
<head>
4
<title>Teapo v0.5j</title>
5
 
6
<style>###base.css###</style>
7
<style>###boot/boot.css###</style> 
8
<style>###app/layout/TestPage.css###</style> 
9
 
10
</head>
11
 
12
<body>
13
 
14
 
15
 
16
<script>###boot/early-0.js###</script>
17
<script>###imports/shims/es5-shim.min.js###</script>
18
<script>###imports/shims/es5-sham.min.js###</script>
19
<script>###imports/knockout/knockout-3.0.0.js###</script>
20
<script>###boot/early-1-with-knockout.js###</script>
21
 
22
<!-- Knockout.js templates --->
23
<script id=Application type="text/html">###app/layout/Application.html###</script>
24
<script id=TestPage type="text/html">###app/layout/TestPage.html###</script>
25
<script id=TestCase type="text/html">###app/layout/TestCase.html###</script>
26
 
27
<script>
28
 
29
(function(teapo) {
30
 
31
try {
32
###app/Application.ts:build###
33
 
34
try {
35
 
36
  var app = new teapo.app.Application();
37
}
38
catch (initError) {
39
  alert('Error in Teapo initialization: '+initError.message+' '+initError.stack);
40
}
41
 
42
}
43
catch (declarationError) {
44
  alert('Error in Teapo declaration: '+declarationError.message+' '+declarationError.stack);
45
}
46
 
47
 
48
})(teapo);
49
</script>
50
 
51
</body>
52
</html>